home *** CD-ROM | disk | FTP | other *** search
/ Amiga Mag HDD Backup / Amiga Mag HDD Backup.zip / Amiga Mag HDD Backup / Alexander.img.bin / Alexander.img / ******10.10 etc. / On Line 10-95 < prev    next >
Text File  |  1995-09-12  |  10KB  |  207 lines

  1. Subj:  On Line 10-95
  2. Date:  Mon, Sep 11, 1995 7:54 PM EDT
  3. From:  rhays@ansel.intersource.com
  4. X-From:    rhays@ansel.intersource.com (Rob Hays)
  5. To:    DonHicks@aol.com
  6.  
  7.  
  8. Hi Don,
  9.  
  10. Here is On line for Oct. 1995.
  11.  
  12.  
  13. On Line October 1995 Rob Hays
  14.     For years the telephone companies have been urging us to "reach
  15. out and touch someone" by phone. With a modem and connection to the
  16. Internet, you can go this one better by reaching out and grabbing. Use FTP
  17. to grab some new programs for your Amiga.  The ABC's of FTP
  18.     FTP stands for File Transfer Protocol, and enables you to copy
  19. files from far off computer systems to your local Internet provider. From
  20. there you use a standard file transfer method, such as ZModem, to download
  21. the files to your home computer.  There are even ways to skip this last
  22. step, and FTP the files directly to your Amiga from that far off system,
  23. which we will be discussing at a later time. 
  24.     Like many Unix command structures, the commands used during a FTP
  25. session will be familiar to users of the AmigaDos Shell.  To change
  26. directories use the cd command, and dir works just as you would expect.
  27. You can also substitute the Unix command ls to obtain a directory listing.
  28. Unlike AmigaDos, you can move up one level in the directory structure with
  29. the command cdup. 
  30.     Ordinarily, you would expect to be refused access to computer
  31. systems that you do not own or belong to. Thankfully, many systems on the
  32. Internet allow what is known as anonymous FTP. This means that anyone that
  33. can connect to the system, is allowed to download or upload files. When
  34. prompted for a username, just enter anonymous, and when asked for a
  35. password, enter your actual e-mail address for the system you are FTP'ing
  36. from. 
  37.     The FTP process is fairly straightforward, but does contain a few
  38. pitfalls for the unwary. The best way to illustrate this is through an
  39. actual FTP session. For a first taste, probably the best thing to get is
  40. found at a site called ftp.eff.org, and here is some of what you will see
  41. as the process unfolds. To get started, you will need to go to the area of
  42. your Internet provider that allows access to the FTP, and open a
  43. connection to the site. 
  44.   ftp> open ftp.eff.org
  45.   Connected to ftp.eff.org. 
  46.   220 ftp.eff.org FTP server (Version wu-2.4(16)
  47.   Name (ftp.eff.org:rhays): anonymous
  48.   Password (ftp.eff.org:anonymous): rhays@ansel.intersource.com
  49.   331 Guest login ok, send your complete e-mail address as
  50.   password. 
  51.   230-******** Welcome to the EFF Online Library **********
  52.   230-Electronic Frontier Foundation files & info: /pub/EFF
  53.     Note that the commands you type in are preceded by ftp> .  This is
  54. a prompt to remind you that you are using FTP, and the system is ready for
  55. another command. 
  56.  ftp> dir
  57.  200 PORT command successful. 
  58.  150 Opening ASCII mode data connection for /bin/ls. 
  59.  total 492
  60.  -rw-r--r-- 1 brown doc 0 Oct 17 1991 .notar
  61.  -rw-r--r-- 1 brown doc 1327 Apr 26 14:23 00-INDEX.ftp
  62.  lrwxrwxrwx 1 brown doc 8 Jul 27 07:29 00-MASTER.FILELIST.gz
  63.  lrwxrwxrwx 1 brown doc 7 Jul 27 07:28 EFF -> pub/EFF
  64.  -rw-rw-r-- 2 mech doc 32412 Aug 15 13:55 README
  65.  -rw-rw-r-- 1 brown doc 1793 Apr 25 19:40 README.incoming
  66.  -rw-rw-r-- 3 106 doc 42705 Aug 14 21:16 about.eff
  67.  drwxrwxr-x 2 brown doc 512 Jul 27 07:28 bin
  68.  lrwxrwxrwx 1 brown doc 7 Jul 27 07:29 eff -> pub/EFF
  69.  drwxrwxr-x20 brown doc 1024 Aug 15 14:49 pub
  70.  drwxrwxr-x 3 brown doc 512 Jul 27 07:29 usr
  71.  226 Transfer complete. 
  72.     Looks pretty imposing doesn't it? Each line is a directory or a
  73. file, with the group of letters on the left indicating who is allowed
  74. various privileges. The number to the left of the date is file size in
  75. bytes, with the file name on the far right.  The fourth line down
  76. indicates a short-cut route to the subdirectory pub/EFF is available by
  77. typing cd EFF. Because Unix commands are for the most part case sensitive,
  78. the sysop of this system has kindly duplicated this short-cut in the ninth
  79. entry for anyone who types cd eff. 
  80.     When working your way through a FTP site looking for interesting
  81. files, one of the first places to examine is the pub directory. So, we
  82. will type cd pub, then either ls or dir for a directory listing. Among the
  83. files and subdirectories listed is: 
  84.  drwxrwxr-x 10 brown doc 1024 Aug 11 14:09 Net_info
  85.     Change directories again to this one, get another listing, and you
  86. will find: 
  87.  drwxrwxr-x 6 brown doc 512 Aug 17 00:40 EFF_Net_Guide
  88.     Go into this directory, and you will find: 
  89.  drwxrwxr-x 8 brown doc 1024 Aug 17 00:40 Other_versions
  90.     Inside this final directory (and you thought your directory
  91. structure was convoluted!) you find this unassuming-looking prize: 
  92.  -rw-rw-r-- 1 brown doc 312813 Feb 17 00:28 eegtti-2.3.amiga.lha
  93.     Now comes one of those pitfalls. Up to this point, we have been
  94. dealing with ASCII text. In order to actually transfer this file, we have
  95. to tell the FTP system to switch to binary mode, like so: 
  96.  ftp> bin
  97.  200 Type set to I. 
  98.     To initiate the actual transfer, type get, followed by the file
  99. name exactly as it appears in the directory listing. You will get a
  100. message like this: 
  101.  ftp> get eegtti-2.3.amiga.lha
  102.  200 PORT command successful. 
  103.  150 Opening BINARY mode data connection for eegtti-2.3.amiga.lha
  104.  (312813 bytes). 
  105.  226 Transfer complete. 
  106.  312813 bytes received in 10.5 secs (29 Kbytes/sec)
  107.     The file we wanted is now in your home directory on your Internet
  108. provider, and we can leave here. Type: 
  109.  ftp> bye
  110.  221 Goodbye. 
  111.     You should now be back to your provider with everything looking
  112. like it did before you opened the FTP connection. After downloading the
  113. file to your Amiga, and unarchiving it with LHa, what you have is the
  114. AmigaGuide version of EFF's (Extended) Guide to the Internet. This is the
  115. electronic version of what used to be known as The Big Dummy's Guide to
  116. the Internet. Assuming you have AmigaGuide, or Multiview, you are now
  117. armed with a document touching on everything from the history of the
  118. Internet, to a Smiley dictionary. Studying this document will give you an
  119. excellent basic understanding of the community of users that calls the
  120. Internet home. 
  121.     If you want the ASCII text version instead of the AmigaGuide
  122. version, once you are logged onto the FTP site, type: 
  123.  cd /pub/Net_info/EFF_Net_Guide
  124.     Make sure the system is in ASCII mode by typing: 
  125.  ascii
  126.     Then grab the ASCII version: 
  127.  get netguide.eff Which Way to the Aminet? 
  128.     Aminet is a vast collection of Amiga files of every conceivable
  129. type. Currently it is approaching two gigabytes in size, and like the
  130. Internet itself, it is growing larger daily as authors upload new
  131. programs, and new versions of old favorites. 
  132.     The main Aminet site is available as ftp.wustl.edu. Because it is
  133. a favorite site of many people, when you log on, you will often see this
  134. message: 
  135.  ftp> o ftp.wustl.edu
  136.  Connected to wuarchive.wustl.edu. 
  137.  220 wuarchive.wustl.edu FTP server (Version wu-2.4(1)
  138.  95) ready. 
  139.  Name (ftp.wustl.edu:rhays): anonymous
  140.  Password (ftp.wustl.edu:anonymous):rhays@ansel.intersource.com
  141.  530-Sorry, there are too many anonymous FTP users using the system at
  142. this
  143.  530-time.  Please try again in a few minutes. 
  144.  530-
  145.  530-There is currently a limit of 300 anonymous users.  Yes, there REALLY
  146. are
  147.  530-that many users on wuarchive -- this message is not the result of a
  148. bug. 
  149.  530 User anonymous access denied. 
  150.  Login failed. 
  151.  421 Service not available, remote server has closed connection
  152.     At this point you can either wait and hope for better luck later,
  153. or try one of the Aminet mirrors. Mirrors are alternate sites that
  154. maintain copies of the Aminet file. Quite often these sites are less busy
  155. than wustl.edu and you can get right in.  While most mirror sites will
  156. delete older files to make room, there are several that maintain complete
  157. copies, updated three times a day. Some of these are, ftp.netnet.net,
  158. ftp.livewire.com.au, ftp.luth.se, ftp.eunet.ch, kelly.uni- opaderborn.de,
  159. ftp.uni-paderborn.de, and ftp.doc.ic.ac.uk.  Although distance is mostly
  160. irrelevent with the Internet, it is best to try the sites closest to you
  161. first. You will save a little time, and more importantly, save a distant
  162. connection for someone who perhaps needs one.  Who Ya Gonna Call? 
  163.     Here are some more Amiga BBS's you may want to check out.  NAME:
  164. ICON BBS PHONE: (702)646-3631 SPEEDS SUPPORTED: Up to 28,800 bps CONTACT:
  165. Marcie Hansen
  166.                 MHansen@Netcom.Com NAME: Cleveland Area Amiga Users Group (CAAUG)
  167. PHONE: (216) 642-7865; (216) 642-7875 SPEEDS SUPPORTED: up to 16.8kbps
  168. CONTACT: CAAUG
  169.                 C/O Carl Skala
  170.                 18813 Harland Dr. 
  171.                 Maple Hts., OH 44137-2239 NAME: The Catacomb PHONE: (504) 882-6576
  172. SPEEDS SUPPORTED: up to 28.8kbps CONTACT: Geoff Sloan NAME: Mystic Places
  173. PHONE: (504) 641-6868 SPEEDS SUPPORTED: up to 14.4kbps CONTACT: Don Talbot
  174. Where To Find Me
  175.         R.Hays5 on GEnie
  176.         RHAYS on Delphi
  177.         72764,2066 on CompuServe
  178.         Rob Hays on Portal
  179.     Internet users, I now have a new email address: 
  180. rhays@ansel.intersource.com. 
  181.     For U.S.Mail: 
  182.         Rob Hays
  183.         P.O.Box 194
  184.         Bloomington, IN 47402
  185.     Please include a SASE if you need a personal reply. 
  186.     If you run an Amiga specific BBS, send me the information callers
  187. will need to access your system. Phone number(s), modem speeds, software
  188. settings, etc. As a service to the Amiga community I will include the
  189. information I receive in this column from time to time. Send the info to
  190. any of my addresses above. 
  191.     That's all for now. See you On Line! 
  192.  
  193.  
  194.  
  195. ----------------------- Headers --------------------------------
  196. From rhays@ansel.intersource.com  Mon Sep 11 19:55:36 1995
  197. Return-Path: rhays@ansel.intersource.com
  198. Received: from ansel.intersource.com (rhays@ansel.intersource.com [204.177.235.2]) by emin04.mail.aol.com (8.6.12/8.6.12) with ESMTP id TAA20394 for <DonHicks@aol.com>; Mon, 11 Sep 1995 19:55:32 -0400
  199. Received: (from rhays@localhost) by ansel.intersource.com (8.6.10/8.6.10) id SAA16950; Mon, 11 Sep 1995 18:52:40 -0500
  200. Date: Mon, 11 Sep 1995 18:52:40 -0500 (EST)
  201. From: Rob Hays <rhays@ansel.intersource.com>
  202. To: DonHicks@aol.com
  203. Subject: On Line 10-95
  204. Message-ID: <Pine.LNX.3.91.950911184927.16783A-100000@ansel.intersource.com>
  205. MIME-Version: 1.0
  206. Content-Type: TEXT/PLAIN; charset=US-ASCII
  207.